home *** CD-ROM | disk | FTP | other *** search
Java Source | 1995-12-31 | 452 b | 21 lines |
- package brothers;
-
- // ------------------ The Uncle Class ----------------- //
- public class UncleFrank {
-
- Dad A = new Dad();
-
- public UncleFrank() {
- // A.sportscar = true; // ERROR! Dad only!
- A.fishing_boat = true; // no problem
- A.golf_clubs = true; // go ahead
- // A.familycar = true; // ERROR! Dad and Son only!
- A.lawnmower = true; // Yeah, sure, anybody.
-
- // A.pubprot=true;
- }
- }
-
-
-
-